
/* --- Global Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #faf7f5;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Header --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b57c6a;
}

.nav a {
  margin-left: 2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #b57c6a;
}

/* --- Hero Small --- */
.hero-small {
  height: 35vh;
  background: url("https://images.unsplash.com/photo-1600185365483-26d7a8ea8b38?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

.hero-small::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-small h1 {
  position: relative;
  font-size: 2.6rem;
  font-weight: 600;
}

/* --- Content --- */
.content {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1.5rem;
}

.intro p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.section-block h2 {
  color: #b57c6a;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

/* --- Tarifs --- */
.tarif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tarif {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarif:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.tarif p:first-child {
  font-weight: 600;
  color: #b57c6a;
}

/* --- Image --- */
.image-block {
  text-align: center;
  margin: 2.5rem 0;
}

.image-block img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* --- Consultation Note --- */
.consult p {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: #777;
}

/* --- Footer --- */
.footer {
  background: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 3rem;
  border-top: 1px solid #eee;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .hero-small h1 {
    font-size: 2rem;
  }
}

.region-logos {
    display:flex;
    flex-direction:row;
    justify-content:space-around;

}

.institut-images {
    text-align:center;
  
}

.horaire {
    text-align:center;
  
}

.location {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align:center;
  
}


